:: It is recommended to test the script on a local machine for its purpose and effects. :: ManageEngine Desktop Central will not be responsible for any :: damage/loss to the data/setup based on the behavior of the script. :: Description - Script to Check AV Compatibility for Speculative Side Channel vulnerability Windows update :: Source - https://support.microsoft.com/en-us/help/4056897/windows-7-update-kb4056897 :: Remarks - Enable Logging must be selected to view the result :: Configuration Type - Computer :: =========================================================================================================================== @echo off REG QUERY "HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows\CurrentVersion\QualityCompat" /v cadca5fe-87d3-4b96-b7fb-a231484277cc /reg:64 >nul 2>&1 if %errorlevel% == 0 ( echo Compatible ) else ( echo Not Compatible )